Trac is being migrated to new services! Issues can be found in our new YouTrack instance and WIKI pages can be found on our website.

Changes between Version 20 and Version 21 of Using Pidgin


Ignore:
Timestamp:
May 29, 2007, 5:53:58 PM (17 years ago)
Author:
John Bailey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Using Pidgin

    v20 v21  
    44
    55== All Platforms ==
     6
     7=== How do I use AIM, MSN, Yahoo!, Jabber/XMPP, ICQ, or any other protocol? ===
     8Use the Account Editor (Accounts->Add/Edit) to add the account of the appropriate messaging service.  Use the checkbox in the account editor to enable the current account.
     9
     10=== How do I change the font Pidgin uses?  The background color? ===
     11The font preference in Pidgin applies only for the formatting of outgoing messages on those protocols which support said formatting.  The display fonts used by the rest of Pidgin are those specified by GTK+, the toolkit we use to create the user interface.  To change this font, you need to edit your `~/.gtkrc-2.0` file.  On Windows, this file is located at `C:\Documents and Settings\username\.themes\Default\gtk-2.0\gtkrc`.  If that file does not exist, simply create it.
     12
     13As an example, you can put this into `.gtkrc-2.0` to change the font size for all GTK+ applications:
     14{{{
     15# Sets the font used by all gtk applications.
     16gtk-font-name = "Verdana 9"
     17}}}
     18
     19Alternatively, you can do this to change the font size for other elements:
     20{{{
     21# This is the style section.  You need this for the examples below.
     22# If you are going to copy the example, copy the entire block,
     23# including the "{" and "}" lines.
     24style "imhtml-fix"
     25{
     26    font_name = "Sans 10"
     27}
     28
     29# This will apply the font style just shown to various components.
     30# If you are going to copy the example, copy the line that does
     31# what you want.
     32
     33# Conversation entry box--where you type.
     34widget "*pidgin_conv_entry" style "imhtml-fix"
     35
     36# Conversation history pane--where you read the conversation.
     37widget "*pidgin_conv_imhtml" style "imhtml-fix"
     38
     39# Log viewer--where you read stored logs
     40widget "*pidgin_log_imhtml" style "imhtml-fix"
     41
     42# formatting-capable entry areas (IMHtml widgets) in request dialogs
     43widget "*pidgin_request_imhtml" style "imhtml-fix"
     44
     45# formatting-capable notification areas in dialogs (again, IMHtml widgets)
     46widget "*pidgin_notify_imhtml" style "imhtml-fix"
     47}}}
     48
     49Background colors can be changed similarly, by finding the correct widget names and setting appropriate bg elements.  Other widgets in Pidgin can be controlled in a similar manner.
     50
     51You could also switch GTK+ themes.  Themes and information on using them can be found at http://themes.freshmeat.net, http://art.gnome.org, or by searching on your favorite search engine, such as Google.
    652
    753=== How do I make Enter make a newline and Ctrl+Enter send? ===
     
    1662widget "*pidgin_conv_entry" binding "my-bindings"
    1763}}}
     64
     65=== How do I make Pidgin use emacs-like keybindings? ===
     66Locate or create your `.gtkrc-2.0` file and insert the following:
     67{{{
     68gtk-key-theme-name = "Emacs"
     69}}}
     70You will need to restart Pidgin when you have finished.  Note that this will affect other GTK+ applications as well.
    1871
    1972=== How do I bind keystrokes to menu items? ===
     
    47100=== How do I use/make smiley themes? ===
    48101See [wiki:SmileyThemes the page on smileys].
     102
     103=== Why are the status icons so big? ===
     104We believe that, by adding a second line of text to each buddy list entry, we're able to show more information about each buddy on the buddy list.  The "Big List," as we call it, shows status text and idle time concisely and attractively.  Most importantly, it puts the buddy icon in the list, making it far easier to locate buddies within a large list where names are harder to pick out than images.  Due to the increased usability of this interface, we have made it the default.
     105
     106We are aware that some people feel more comfortable using an interface more similar to IM clients they may have used in the past.  The 'Big List' can  be disabled by un-checking "Show buddy details" in the Buddies menu.
     107
     108=== How do I get sound to work correctly? ===
     109Pidgin uses gstreamer to play sounds.  Playing sounds directly through esound or arts is no longer supported.  To compile Pidgin with support for gstreamer you need libgstreamer0.10-dev and its dependencies.  These packages are named differently on different platforms.  If you do not wish to install these packages you can also just change your sound playing method in preferences to `Command` and use `esdplay %s` or `artsplay %s`.
     110
     111=== How do I make Pidgin use ALSA or OSS for playing sounds?  What does the "Automatic" option do? ===
     112The "Automatic" option lets gstreamer pick how the sounds are played.  You can use the `gstreamer-properties` tool to control this if you use GNOME.
    49113
    50114== Windows Specific ==
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!